home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / INSERT MAX.SCRIPT < prev    next >
Encoding:
Text File  |  2002-11-23  |  534 b   |  25 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3.  
  4. // Insert script helper for:
  5.  
  6. /**
  7. @Object: Math 
  8. @Method: max(<I>number1, number2</I>) - returns the maximum of two numbers.
  9. @Syntax: Math.max(number1, number2)
  10. @Summary: max - returns the maximum of two numbers
  11. */
  12.  
  13. function DoCommand()
  14. {
  15.   var editor = getActiveEditor();
  16.   if (editor)
  17.   {
  18.     var selection = editor.getSelection();
  19.     editor.replace("Math.max(number1, number2)", selection);
  20.     editor.setActive("Insert Math.max");
  21.   }
  22. }
  23.  
  24. !!/Script
  25.